"DESCRIPTION 1"="This plug-in uses the DataInvalid function to indicate that the check has gone wrong as long as you not enter "AAA" in the first field."
"AUTHOR"="Xteq Systems"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
'Called when the Plugin is started
Sub Plugin_Initialize
DebugMsg("Plugin_Initialize")
End Sub
'Called when the Plugin should validate the Data the user has entered
Sub Plugin_CheckData(ElementIndex)
s=GetUIElement(1)
if s<>"AAA" then
DataInvalid("Please enter AAA")
end if
End Sub
'Called when the Plugin should apply the changes
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
DebugMsg("Apply fired!")
End Sub
'Called when the Plugin is about to be removed from memory